home *** CD-ROM | disk | FTP | other *** search
- package javax.swing;
-
- import java.awt.Point;
- import javax.swing.tree.TreePath;
-
- public final class JTree$DropLocation extends TransferHandler.DropLocation {
- private final TreePath path;
- private final int index;
-
- private JTree$DropLocation(Point var1, TreePath var2, int var3) {
- super(var1);
- this.path = var2;
- this.index = var3;
- }
-
- public int getChildIndex() {
- return this.index;
- }
-
- public TreePath getPath() {
- return this.path;
- }
-
- public String toString() {
- return this.getClass().getName() + "[dropPoint=" + this.getDropPoint() + "," + "path=" + this.path + "," + "childIndex=" + this.index + "]";
- }
-
- // $FF: synthetic method
- JTree$DropLocation(Point var1, TreePath var2, int var3, JTree.1 var4) {
- this(var1, var2, var3);
- }
- }
-